public Task <IdentificationTypeDTO> Add(IdentificationTypeDTO entity)
 {
     throw new NotImplementedException();
 }
Example #2
0
 public void Post([FromBody] IdentificationTypeDTO value)
 {
     TryValidateModel(value);
     this.service.Create(this.mapper.Map <IdentificationType>(value));
 }