Esempio n. 1
0
        public TmapEventEntryController(ITmapEventEntryService service, ICommonProvider common)
        {
            this.service = service;
            this.common  = common;

            mapperConfig = new MapperConfiguration(c => {
                c.CreateMap <TmapEventEntryModel, TmapEventEntry>();
            });
        }
Esempio n. 2
0
 public AdminTmapController(ITmapEventEntryService service, ICommonProvider common)
 {
     this.service = service;
     this.common  = common;
 }