예제 #1
0
    protected void btnGet_DirectClick(object sender, DirectEventArgs e)
    {
        //ShiftTime st = new ShiftTime();
        ShifTimeService stService = new ShifTimeService();

        Store str = grdST.GetStore();

        str.DataSource = stService.GetAll();
        str.DataBind();
    }
예제 #2
0
 public IEnumerable <ShiftTime> GetAll()
 {
     return(shifTimeService.GetAll());
 }