public BaseResponse <bool> AddOrganizationRecord(AddOrganParameter param)
        {
            if (Validate(param))
            {
                return(organManager.AddOrganizationRecord(param));
            }
            else
            {
                BaseResponse <bool> response = new BaseResponse <bool>();
                response.IsSuccessful = false;
                response.Reason       = "JWT_ERR";

                return(response);
            }
        }
Beispiel #2
0
 public BaseResponse <bool> AddOrganizationRecord(AddOrganParameter param)
 {
     return(organManager.AddOrganizationRecord(param));
 }