public void RemoveNoReturnAsync(ComponentTypeSpecificationMinimal dalComponentTypeSpecificationMinimal)
 {
     RepoDbSet.Remove(_mapper.MapToDomain(dalComponentTypeSpecificationMinimal));
 }
 public void AddNoReturn(ComponentTypeSpecificationMinimal dalComponentTypeSpecificationMinimal)
 {
     RepoDbSet.Add(_mapper.MapToDomain(dalComponentTypeSpecificationMinimal));
 }
 public void AddNoReturn(ComponentTypeSpecificationMinimal bllComponentTypeSpecificationMinimalList)
 {
     ServiceRepository.AddNoReturn(_mapper.MapToDALMinimal(bllComponentTypeSpecificationMinimalList));
 }
 public void RemoveNoReturnAsync(ComponentTypeSpecificationMinimal bllComponentTypeSpecificationMinimalList)
 {
     ServiceRepository.RemoveNoReturnAsync(_mapper.MapToDALMinimal(bllComponentTypeSpecificationMinimalList));
 }
 public ComponentTypeSpecification MapToDomain(ComponentTypeSpecificationMinimal dalCComponentTypeSpecificationMinimal)
 {
     return(Map <ComponentTypeSpecificationMinimal, ComponentTypeSpecification>(dalCComponentTypeSpecificationMinimal));
 }