Example #1
0
 public Response AddProductToDepartment(NewDepartmentProduct newDepartmentProduct)
 {
     throw new NotImplementedException();
 }
Example #2
0
        public ActionResult AddProductToDepartment([FromBody] NewDepartmentProduct newDepartmentProduct)
        {
            var response = _productService.AddProductToDepartment(newDepartmentProduct);

            return(GetReponseResult(response));
        }