Exemplo n.º 1
0
 public int xoabenh(BENHdto p)
 {
     int thamso = 1;
     string[] name = new string[thamso];
     object[] values = new object[thamso];
     name[0] = "@mabenh";
     values[0] = p.Mabenh;
     return kn.update("xoabenh", name, values, thamso);
 }
Exemplo n.º 2
0
 public int thembenh(BENHdto p)
 {
     int thamso = 2;
     string[] name = new string[thamso];
     object[] values = new object[thamso];
     name[0] = "@mabenh";
     name[1] = "@tenbenh";
     values[0] = p.Mabenh;
     values[1] = p.Tenbenh;
     return kn.update("thembenh", name, values, thamso);
 }
Exemplo n.º 3
0
 public int xoabenh(BENHdto p)
 {
     return b.xoabenh(p);
 }
Exemplo n.º 4
0
 public int thembenh(BENHdto p)
 {
     return b.thembenh(p);
 }
Exemplo n.º 5
0
 public int suabenh(BENHdto p)
 {
     return b.suabenh(p);
 }