public FakeAreasController(
     IAreasServices areas,
     IRecordsServices records,
     IDocumentsServices documents,
     IUsersServices users) : base(areas, records, documents, users)
 {
 }
 public AreasController(
     IAreasServices areas,
     IRecordsServices records,
     IDocumentsServices documents,
     IUsersServices users)
 {
     this.areas = areas;
     this.records = records;
     this.documents = documents;
     this.users = users;
 }
 public HomeController(
     INotesServices notes,
     IRecordsServices records,
     IDocumentsServices documents,
     IUsersServices users)
 {
     this.notes = notes;
     this.records = records;
     this.documents = documents;
     this.users = users;
 }
示例#4
0
 public HomeController(
     INotesServices notes,
     IRecordsServices records,
     IDocumentsServices documents,
     IUsersServices users)
 {
     this.notes     = notes;
     this.records   = records;
     this.documents = documents;
     this.users     = users;
 }
 public RecordsController(
     IRecordsServices records,
     IDocumentsServices documents,
     IAreasServices areas,
     IRecordFilesServices recordFiles)
 {
     this.records = records;
     this.documents = documents;
     this.areas = areas;
     this.recordFiles = recordFiles;
 }