示例#1
0
 public UserService(ITodoUnitOfWork uowTodo
                    , IAutoMapperWrapper mapper
                    , IHashUtility hashUtility)
 {
     _uowTodo     = uowTodo;
     _mapper      = mapper;
     _hashUtility = hashUtility;
 }
示例#2
0
 public BookRepository(IHttpClientUtility http, IAutoMapperWrapper mapper)
 {
     _http   = http;
     _mapper = mapper;
 }
示例#3
0
 public DayController(IToDoListRepository toDoListRepository, IAutoMapperWrapper autoMapperWrapper)
 {
     _toDoListRepository = toDoListRepository;
     _autoMapperWrapper  = autoMapperWrapper;
 }