public HomeController(IUserSQLDAL userDAL, IPotholeDAL potholeDAL, IClaimsDAL claimsDAL) : base(userDAL) { this.potholeDAL = potholeDAL; this.claimsDAL = claimsDAL; this.userDAL = userDAL; }
public HomeController(IPotholeDAL dal) { this.potholeDAL = dal; }
public PotholesController(IPotholeDAL dal) { this.potholeDAL = dal; }
public HomeController(IPotholeDAL potholeDAL) { this.potholeDAL = potholeDAL; }
public FunctionController(IPotholeDAL potholeDAL) { this.potholeDAL = potholeDAL; }