예제 #1
0
 public JsonResult GetProductsTransfers(string start, string stop, string filter, StationsService service)
 {
     if (string.IsNullOrWhiteSpace(filter))
     {
         filter = "";
     }
     return(Json(service.GetProductsTransfers(DateTime.Parse(start), DateTime.Parse(stop), filter)));
 }