Esempio n. 1
0
 public void SaveFields(string moduleNo, string actionName, List <FieldItem> list)
 {
     _messageDispatcher.SendCommand(new SaveFields()
     {
         ModuleNo = moduleNo, ActionName = actionName, Fields = list
     });
 }
Esempio n. 2
0
 public IHttpActionResult CreateUser(CreateUser user)
 {
     _messageDispatcher.SendCommand(user);
     return(Ok());
 }
Esempio n. 3
0
 public IHttpActionResult CreateCategoryTypeScheme(CreateCategoryTypeScheme categoryTypeScheme)
 {
     _messageDispatcher.SendCommand(categoryTypeScheme);
     return(Ok());
 }
Esempio n. 4
0
 public IHttpActionResult CreateRole(CreateRole role)
 {
     _messageDispatcher.SendCommand(role);
     return(Ok());
 }
Esempio n. 5
0
 public IHttpActionResult CreateAssociation(CreateAssociation association)
 {
     _messageDispatcher.SendCommand(association);
     return(Ok());
 }
Esempio n. 6
0
 public void UpdateEntity(string moduleNo, Guid id, EditEntity entity)
 {
     _messageDispatcher.SendCommand(entity);
 }
Esempio n. 7
0
 public IHttpActionResult CreatePopTemplate(CreatePopTemplate PopTemplate)
 {
     _messageDispatcher.SendCommand(PopTemplate);
     return(Ok());
 }
Esempio n. 8
0
 public IHttpActionResult Create(CreateDropDown ddl)
 {
     _messageDispatcher.SendCommand(ddl);
     return(Ok());
 }
Esempio n. 9
0
 public IHttpActionResult CreateParty(CreateParty party)
 {
     _messageDispatcher.SendCommand(party);
     return(Ok());
 }
Esempio n. 10
0
 public IHttpActionResult CreateCategory(CreateCategory category)
 {
     _messageDispatcher.SendCommand(category);
     return(Ok());
 }
Esempio n. 11
0
 public void SaveModule(List <ModuleItem> list)
 {
     _messageDispatcher.SendCommand(new SaveModules {
         Modules = list
     });
 }