コード例 #1
0
 public bool updateBut(PROPBut But)
 {
     if (string.IsNullOrEmpty(But.Id.ToString()) || But.Id <= 0)
     {
         return(false);
     }
     else
     {
         DALBut dalBut = new DALBut();
         dalBut.UpdateBut(But);
         return(true);
     }
 }
コード例 #2
0
        public List <PROPBut> getBut(string searchBut)
        {
            DALBut dalBut = new DALBut();

            if (string.IsNullOrEmpty(searchBut))
            {
                return(dalBut.getAllBut());
            }
            else
            {
                return(dalBut.getBut(searchBut));
            }
        }
コード例 #3
0
        public int CreateBut(int id, int equipeId, int tournoiId, int joueurId, DateTime date)
        {
            if (string.IsNullOrEmpty(equipeId.ToString()))
            {
                return(-1);
            }
            else
            {
                DALBut  dalBut = new DALBut();
                PROPBut joueur = new PROPBut(0, tournoiId, equipeId, joueurId, date);

                return(dalBut.CreateBut(joueur));
            }
        }
コード例 #4
0
        public string getButByID(string stringButID)
        {
            int    ButID;
            DALBut dalBut = new DALBut();

            int.TryParse(stringButID, out ButID);
            if (ButID == 0)
            {
                return(string.Empty);
            }
            else
            {
                return(dalBut.GetButById(ButID));
            }
        }
コード例 #5
0
        public int deleteBut(string stringButID)
        {
            int    ButID;
            DALBut dalBut = new DALBut();

            int.TryParse(stringButID, out ButID);

            if (ButID == 0)
            {
                return(0);
            }
            else
            {
                return(dalBut.DeleteBut(ButID));
            }
        }