public void RemoveNoReturnAsync(ComponentSpecificationMinimal bllComponentSpecification)
 {
     ServiceRepository.RemoveNoReturnAsync(_mapper.MapToDALMinimal(bllComponentSpecification));
 }
 public void AddNoReturn(ComponentSpecificationMinimal bllComponentSpecification)
 {
     ServiceRepository.AddNoReturn(_mapper.MapToDALMinimal(bllComponentSpecification));
 }
示例#3
0
 public void AddNoReturn(ComponentSpecificationMinimal dalComponentSpecificationMinimal)
 {
     RepoDbSet.Add(_mapper.MapToDomain(dalComponentSpecificationMinimal));
 }
示例#4
0
 public void RemoveNoReturnAsync(ComponentSpecificationMinimal dalComponentSpecificationMinimal)
 {
     RepoDbSet.Remove(_mapper.MapToDomain(dalComponentSpecificationMinimal));
 }
 public ComponentSpecification MapToDomain(ComponentSpecificationMinimal dalComponentSpecificationMinimal)
 {
     return(Map <ComponentSpecificationMinimal, ComponentSpecification>(dalComponentSpecificationMinimal));
 }