public Guid Add(CustomerPropertyEntity model) { var repository = _genericServiceProvider.Provide <IPropertyAddService <CustomerPropertyEntity> >(); return(repository.Add(model)); }
public async Task <Guid> AddAsync(CustomerPropertyEntity entity) { return(await _dkmsUserRepository.AddAsync(DkmsUserContext.UserIdDefaultEmpty, entity)); }
public Guid Add(CustomerPropertyEntity model) { return(_customerPropertyService.Add(model)); }