public MessageResult GetStoreList(int sTypeId, string keywords, bool isShowDel) { try { var list = storeBLL.LoadStoreList(sTypeId, keywords, isShowDel); return(MessageResult.Success(list)); } catch (Exception ex) { return(MessageResult.Fail(ex.Message)); } }