public TransferTypeDto MapEntityToDto(TransferType transferType)
 {
     var res = new TransferTypeDto()
     {
         Id = transferType.Id,
         Code = transferType.Code,
         Name = transferType.Name
     };
     return res;
 }
 public TransferTypeDto RemapModel(TransferTypeDto model)
 {
     throw new NotImplementedException();
 }
 public TransferType MapToEntity(TransferTypeDto model)
 {
     throw new NotImplementedException();
 }
 public TransferType MapDtoToEntity(TransferTypeDto transferType)
 {
     var entity = new TransferType(transferType.Id, transferType.Name, transferType.Code);
     return entity;
 }