public ApplicationLogService(IAgencyContext agencyContext, ICalendarService calendarService, ICanAddToContext context)
 {
     this.agencyContext = agencyContext;
     this.calendarService = calendarService;
     this.context = context;
 }
Example #2
0
 public AgencyService(IAgencyRepository agencyRepository, ICanAddToContext context, IFileSystemService fileSystem)
 {
     this.agencyRepository = agencyRepository;
     this.context = context;
     this.fileSystem = fileSystem;
 }