Ejemplo n.º 1
0
 public ActionResult SaveMiscellaneousSubCategory(MiscellaneousSubCategory model)
 {
     CommandDirectory.Instance.SaveMiscellaneousSubCategory(model);
     return(Json(model));
 }
Ejemplo n.º 2
0
        public void SaveMiscellaneousSubCategory(MiscellaneousSubCategory model)
        {
            var command = new SaveMiscellaneousSubCategory(model);

            command.Execute();
        }
Ejemplo n.º 3
0
 public void SaveMiscellaneousSubCategory(MiscellaneousSubCategory model)
 {
     DatabaseCommandDirectory.Instance.SaveMiscellaneousSubCategory(model);
     new TaskFactory().StartNew(LoadMiscellaneousCategories);
 }
Ejemplo n.º 4
0
 public SaveMiscellaneousSubCategory(MiscellaneousSubCategory model)
 {
     _model = model;
 }