using System.Collections.Generic;
using System.Threading.Tasks;
using MapsModels.DsModels;
using MapsDb.Models;
namespace MapsDb.Interfaces
{
public interface IDepartmentAffiliationDs
{
Task<IList<DepartmentAffiliationListDsM>> GetSelectListAsync();
}
}