예제 #1
0
        public AccountManagementController(IUnitOfWork <NationalTeaContext> ofWork, ICommonSearchModel commonSearchModel, IUserProfileAppService userProfileAppService)
        {
            _commonSearchModel = commonSearchModel;

            _userProfileAppService = userProfileAppService;
            _unit = ofWork;
        }
예제 #2
0
 public void Setvalues(ICommonSearchModel entity, ICommonSearchModel existingEntity)
 {
     _service.Setvalues(entity, existingEntity);
 }
예제 #3
0
 public void Delete(ICommonSearchModel obj)
 {
     _service.Delete(obj);
 }
예제 #4
0
 public void Update(ICommonSearchModel obj)
 {
     _service.Update(obj);
 }
예제 #5
0
 public void Add(ICommonSearchModel obj)
 {
     _service.Add(obj);
 }