Harish Batchu

Harish Batchu

  • NA
  • 255
  • 65.5k

Dot net core application

Jun 15 2019 12:16 PM
There is no argument given that corresponds to the required formal parameter context of httpcontext
 
 
 
 
[Serializable]
abstract public class BOBase
{
protected bool _newItem;
[NonSerialized]
protected HttpContext _ctx;
protected BOBase(HttpContext context)
{
_ctx = context;
}
abstract public void Save();
abstract public void Delete();
abstract internal void Fill(System.Data.DataRow dataRow);
}
 
 
Severity Code Description Project File Line Suppression State
Error CS7036 There is no argument given that corresponds to the required formal parameter 'context' of 'BOBase.BOBase(HttpContext)' MilKPosBusinessObjects
Severity Code Description Project File Line Suppression State
Error CS7036 There is no argument given that corresponds to the required formal parameter 'context' of 'BOBase.BOBase(HttpContext)' MilKPosBusinessObjects 
Severity Code Description Project File Line Suppression State
Error CS7036 There is no argument given that corresponds to the required formal parameter 'context' of 'BOBaseFactory.BOBaseFactory(HttpContext)' MilKPosBusinessObjects 
 Can any one fix it 
 
ASAP Thanking You 

Answers (1)