Example #1
0
        public Stream GetUserMngbyID(Core.Model.mdlUser lParam)
        {
            string json = Core.Services.RestPublisher.Serialize(UserFacade.GetUserID(lParam.UserID));

            WebOperationContext.Current.OutgoingResponse.ContentType = "application/json; charset=utf-8";
            MemoryStream ms = new MemoryStream(Encoding.UTF8.GetBytes(json));

            return(ms);
        }
Example #2
0
 public Core.Model.mdlResultSvc DeleteUserMng(Core.Model.mdlUser param)
 {
     return(UserFacade.DeleteUserMng(param.UserID));
 }