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