Exemplo n.º 1
0
 public Response <bool> UpdateShipper(string id, ShipperData sd)
 {
     int.TryParse(id, out int sid);
     return(this.ShipperService.UpdateShipper(sid, sd.name, sd.phone));
 }
Exemplo n.º 2
0
 public Response <bool> AddShipper(ShipperData sd)
 {
     return(this.ShipperService.AddShipper(sd.name, sd.phone));
 }