public static ChargesType ToEntity(this ChargesTypeModel model, ChargesType destination)
 {
     return(AutoMapperConfiguration.Mapper.Map(model, destination));
 }
 public static ChargesType ToEntity(this ChargesTypeModel model)
 {
     return(AutoMapperConfiguration.Mapper.Map <ChargesTypeModel, ChargesType>(model));
 }