public DoohController(IDoohService doohService, IPartnerService partnerService, IMappingEngine mapping) { _doohService = doohService; _partnerService = partnerService; _mapping = mapping; }
public static IQueryable <DoohPanelLocation> GetDoohPanelLocationsByIds(this IDoohService doohService, params int[] ids) { var source = doohService.GetDoohPanelLocations(); return(source.Where(x => ids.Contains(x.DoohPanelLocationId))); }