コード例 #1
0
 /// <summary>
 /// List Partner
 /// </summary>
 /// <returns></returns>
 /// <history>
 ///     [Truong Lam]   Created [10/06/2020]
 /// </history>
 public List <Partner> GetListPartner()
 {
     try
     {
         PartnerDAL     dal    = new PartnerDAL();
         List <Partner> result = dal.GetListPartner();
         return(result);
     }
     catch (Exception ex)
     {
         throw new DongAException(DongALayer.Business, ex.Message, ex);
     }
 }
コード例 #2
0
ファイル: PartnerBLL.cs プロジェクト: bin1123/webgamesite
 public static string PartnerAbbreSel(int pid)
 {
     return(PartnerDAL.PartnerAbbreSel(pid));
 }